1 🔰 Introduction

This comprehensive tutorial(Morabito et al. 2023) demonstrates the application of hdWGCNA (hierarchical decomposition Weighted Gene Co-expression Network Analysis) for analyzing co-expression networks in single-cell data. Our analysis utilizes a processed single-nucleus RNA-sequencing (snRNA-seq) dataset derived from human cortical samples, as described in(Zhou et al. 2020). The dataset has undergone preliminary processing using standard single-cell transcriptomics pipelines, specifically Seurat(Hao et al. 2024) or Scanpy(Wolf, Angerer, and Theis 2018). If you would like to follow this tutorial using your own dataset, you first need to satisfy the following prerequisites:

An example of running the prerequisite data processing steps can be found in the Seurat Guided Clustering Tutorial.

Additionally, there are a lot of WGCNA-specific terminology and acronyms, which are all clarified in this table.

Important note: We do not re-generate these tutorial figures after each update of hdWGCNA, so the figures that you generate will be slightly different than what are shown here if you are following along with the same dataset.

2 ⏬ Data Acquisition

To facilitate this tutorial, we provide access to a pre-processed Seurat object containing control human brain data, as referenced in(Zhou et al. 2020).

The dataset (Zhou_2020_control.rds) can be obtained from our data repository.

3 🔃 Load the dataset and required libraries

First we will load the single-cell dataset and the required R libraries for this tutorial.

# single-cell analysis package
library(Seurat)

# plotting and data science packages
library(tidyverse)
library(cowplot)
library(patchwork)

# co-expression network analysis packages:
library(WGCNA)
library(hdWGCNA)

# using the cowplot theme for ggplot
theme_set(theme_cowplot())

# set random seed for reproducibility
set.seed(12345)

# optionally enable multithreading
enableWGCNAThreads(nThreads = 20)

# load the Zhou et al snRNA-seq dataset
seurat_obj <- readRDS('data/Zhou_2020_control.rds')

This Seurat object was originally created using Seruat v4. If you are using Seurat v5, please run this additional command.

seurat_obj <- SeuratObject::UpdateSeuratObject(seurat_obj)

Here we will plot the UMAP colored by cell type just to check that we have loaded the data correctly, and to make sure that we have grouped cells into clusters and cell types.

DimPlot(seurat_obj, group.by='cell_type', label=TRUE) +
   umap_theme() + ggtitle('Zhou et al Control Cortex') + NoLegend()
umap_celltype

Figure 1. Umap plot by celltype

4 🎯 Seurat Object Configuration for WGCNA Analysis

Prior to implementing hdWGCNA analysis, proper configuration of the Seurat object is essential. The hdWGCNA computational results are stored within the Seurat object’s @misc slot, with accessibility managed through dedicated getter and setter functions. The framework supports multiple hdWGCNA experiments within a single Seurat object, enabling parallel analysis of different cell types from the same single-cell dataset. Important Note: As hdWGCNA operates as a downstream analytical tool, subsetting of the Seurat object is not supported following the execution of SetupForWGCNA.

Here we will set up the Seurat object using the SetupForWGCNA function, specifying the name of the hdWGNCA experiment. This function also selects the genes that will be used for WGCNA. The user can select genes using three different approaches using the gene_select parameter:

  • variable: use the genes stored in the Seurat object’s VariableFeatures.
  • fraction: use genes that are expressed in a certain fraction of cells for in the whole dataset or in each group of cells, specified by group.by.
  • custom: use genes that are specified in a custom list.

In this example, we will select genes that are expressed in at least 5% of cells in this dataset, and we will name our hdWGCNA experiment “tutorial”.

seurat_obj <- SetupForWGCNA(
  seurat_obj,
  gene_select = "fraction", # the gene selection approach
  fraction = 0.05, # fraction of cells that a gene needs to be expressed in order to be included
  wgcna_name = "tutorial" # the name of the hdWGCNA experiment
)

5 🧮 Metacell Construction

Following Seurat object configuration, the initial analytical step in the hdWGCNA pipeline involves the generation of metacells from the single-cell dataset. Metacells represent sophisticated aggregates of phenotypically similar cells derived from identical biological origins. This aggregation process employs the k-Nearest Neighbors (KNN) algorithm to identify and cluster similar cells, followed by the computation of either mean or summed expression values, resulting in a consolidated metacell gene expression matrix. The sparsity of the metacell expression matrix is considerably reduced when compared to the original expression matrix, and therefore it is preferable to use. We were originally motivated to use metacells in place of the original single cells because correlation network approaches such as WGCNA are sensitive to data sparsity.

hdWGCNA includes a function MetacellsByGroups to construct metacell expression matrices given a single-cell dataset. This function constructs a new Seurat object for the metacell dataset which is stored internally in the hdWGCNA experiment. The group.by parameter determines which groups metacells will be constructed in. We only want to construct metacells from cells that came from the same biological sample of origin, so it is critical to pass that information to hdWGCNA via the group.by parameter. Additionally, we usually construct metacells for each cell type separately. Thus, in this example, we are grouping by Sample and cell_type to achieve the desired result.

The number of cells to be aggregated k should be tuned based on the size of the input dataset, in general a lower number for k can be used for small datasets. We generally use k values between 20 and 75. The dataset used for this tutorial has 40,039 cells, ranging from 890 to 8,188 in each biological sample, and here we used k=25. The amount of allowable overlap between metacells can be tuned using the max_shared argument. There should be a range of K values that are suitable for reducing the sparsity while retaining cellular heterogeneity for a given dataset, rather than a single optimal value.

Note: we have found that the metacell aggregation approach does not yield good results for extremely underrepresented cell types. For example, in this dataset, the brain vascular cells (pericytes and endothelial cells) were the least represented, and we have excluded them from this analysis. MetacellsByGroups has a parameter min_cells to exclude groups that are smaller than a specified number of cells. Errors are likely to arise if the selected value for min_cells is too low.

Here we construct metacells and normalize the resulting expression matrix using the following code:

# construct metacells  in each group
seurat_obj <- MetacellsByGroups(
  seurat_obj = seurat_obj,
  group.by = c("cell_type", "Sample"), # specify the columns in seurat_obj@meta.data to group by
  reduction = 'harmony', # select the dimensionality reduction to perform KNN on
  k = 25, # nearest-neighbors parameter
  max_shared = 10, # maximum number of shared cells between two metacells
  ident.group = 'cell_type' # set the Idents of the metacell seurat object
)

# normalize metacell expression matrix:
seurat_obj <- NormalizeMetacells(seurat_obj)
Optional: Process the Metacell Seurat Object

Since we store the Metacell expression information as its own Seurat object, we can run Seurat functions on the metacell data. We can get the metacell object from the hdWGCNA experiment using GetMetacellObject.

metacell_obj <- GetMetacellObject(seurat_obj)

Additionally, we have included a few wrapper functions to apply the Seurat workflow to the metacell object within the hdWGCNA experiment. Here we apply these wrapper functions to process the metacell object and visualize the aggregated expression profiles in two dimensions with UMAP.

seurat_obj <- NormalizeMetacells(seurat_obj)
seurat_obj <- ScaleMetacells(seurat_obj, features=VariableFeatures(seurat_obj))
seurat_obj <- FindVariableFeatures(seurat_obj)
seurat_obj <- RunPCAMetacells(seurat_obj, features=VariableFeatures(seurat_obj))
seurat_obj <- RunHarmonyMetacells(seurat_obj, group.by.vars='Sample')
seurat_obj <- RunUMAPMetacells(seurat_obj, reduction='harmony', dims=1:15)


p2 <- DimPlotMetacells(seurat_obj, group.by='cell_type') + umap_theme() + ggtitle("Cell Type")
p3 <- DimPlotMetacells(seurat_obj, group.by='Sample') + umap_theme() + ggtitle("Sample")

p2 + p3 + plot_layout(ncol=2)
umap_metacells

Figure 2. Umap plot of metacells colored by cell type and sample

6 🔗 Co-expression Network Analysis

This section details the methodology for conducting co-expression network analysis using hdWGCNA, specifically focusing on inhibitory neuron (INH) populations within our exemplar dataset.

6.1 Expression Matrix Configuration

To initiate the network analysis, we must first define our expression matrix. As our analysis focuses exclusively on inhibitory neurons, it is necessary to subset the expression data accordingly before network construction. hdWGCNA includes the SetDatExpr function to store the transposed expression matrix for a given group of cells that will be used for downstream network analysis. The metacell expression matrix is used by default (use_metacells=TRUE), but hdWGCNA does allow for the single-cell expression matrix to be used if desired.. This function allows the user to specify which slot/layer to take the expression matrix from, for example if the user wanted to apply SCTransform normalization instead of NormalizeData.

seurat_obj <- SetDatExpr(
  seurat_obj,
  group_name = "INH", # the name of the group of interest in the group.by column
  group.by='cell_type', # the metadata column containing the cell type info. This same column should have also been used in MetacellsByGroups
  assay = 'RNA', # using RNA assay
  layer = 'data' # using normalized data
)
Selecting more than one group

Suppose that you want to perform co-expression network analysis on more than one cell type or cluster simultaneously. SetDatExpr can be run with slighly different settings to achieve the desired result by passing a character vector to the group_name parameter.

seurat_obj <- SetDatExpr(
  seurat_obj,
  group_name = c("INH", "EX"),
  group.by='cell_type'
)

6.2 Select soft-power threshold

Next we will select the “soft power threshold”. This is an extremely important step in the hdWGNCA pipleine (and for vanilla WGCNA). hdWGCNA constructs a gene-gene correlation adjacency matrix to infer co-expression relationships between genes. The correlations are raised to a power to reduce the amount of noise present in the correlation matrix, thereby retaining the strong connections and removing the weak connections. Therefore, it is critical to determine a proper value for the soft power threshold.

We include a function TestSoftPowers to perform a parameter sweep for different soft power thresholds. This function helps us to guide our choice in a soft power threshold for constructing the co-expression network by inspecting the resulting network topology for different power values. The co-expression network should have a scale-free topology, therefore the TestSoftPowers function models how closely the co-expression network resembles a scale-free graph at different soft power thresholds. Furthermore, we include a function PlotSoftPowers to visualize the results of the parameter sweep.

The following code performs the parameter sweep and outputs a summary figure.

# Test different soft powers:
seurat_obj <- TestSoftPowers(
  seurat_obj,
  networkType = 'signed' # you can also use "unsigned" or "signed hybrid"
)

# plot the results:
plot_list <- PlotSoftPowers(seurat_obj)


# assemble with patchwork
wrap_plots(plot_list, ncol=2)
softpower_ggplot

Figure 3. Soft power threshold selection plots

The general guidance for WGCNA and hdWGCNA is to pick the lowest soft power threshold that has a Scale Free Topology Model Fit greater than or equal to 0.8, so in this case we would select our soft power threshold as 9. Later on, the ConstructNetwork will automatically select the soft power threshold if the user does not provide one.

Tthe output table from the parameter sweep is stored in the hdWGCNA experiment and can be accessed using the GetPowerTable function for further inspection:

power_table <- GetPowerTable(seurat_obj)
head(power_table)
Output
  Power   SFT.R.sq     slope truncated.R.sq   mean.k. median.k.    max.k.
1     1 0.26110351 11.889729      0.9546294 6525.7417 6532.2923 7219.7053
2     2 0.01631495  1.375111      0.9935408 3434.0090 3421.8601 4293.1289
3     3 0.04178826 -1.487314      0.9784280 1840.1686 1817.2352 2651.0575
4     4 0.29769630 -3.249674      0.9588046 1003.7962  978.3657 1719.7194
5     5 0.55846894 -4.060086      0.9617106  557.3639  533.2201 1157.0353
6     6 0.70513240 -4.195496      0.9696135  315.0681  295.1368  804.1011

6.3 Construct co-expression network

We now have everything that we need to construct our co-expression network. Here we use the hdWGCNA function ConstructNetwork, which calls the WGCNA function blockwiseConsensusModules under the hood. This function has quite a few parameters to play with if you are an advanced user, but we have selected default parameters that work well with many single-cell datasets. The parameters for blockwiseConsensusModules can be passed directly to ConstructNetwork with the same parameter names.

The following code construtcts the co-expression network using the soft power threshold selected above:

# construct co-expression network:
seurat_obj <- ConstructNetwork(
  seurat_obj,
  tom_name = 'INH' # name of the topoligical overlap matrix written to disk
)
saveRDS(seurat_obj, "results/after_TOM_construction_seurat_obj.rds")

hdWGCNA also includes a function PlotDendrogram to visualize the WGCNA dendrogram, a common visualization to show the different co-expression modules resulting from the network analysis. Each leaf on the dendrogram represents a single gene, and the color at the bottom indicates the co-expression module assignment.

Importantly, the “grey” module consists of genes that were not grouped into any co-expression module. The grey module should be ignored for all downstream analysis and interpretation.

PlotDendrogram(seurat_obj, main='INH hdWGCNA Dendrogram')
inh_plotgendrogram

Figure 4. Dendrogram of hdWGCNA modules in inhibitory neurons

6.4 Optional: inspect the topoligcal overlap matrix (TOM)

hdWGCNA represents the co-expression network as a topoligcal overlap matrix (TOM). This is a square matrix of genes by genes, where each value is the topoligcal overlap between the genes. The TOM is written to the disk when running ConstructNetwork, and we can load it into R using the GetTOM function. Advanced users may wish to inspect the TOM for custom downstream analyses.

TOM <- GetTOM(seurat_obj)

7 ✨ Module Eigengenes and Connectivity Analysis

This section outlines the methodology for calculating module eigengenes in single-cell data and determining the eigengene-based connectivity metrics for individual genes.

7.1 Module Eigengene Harmonization

Module Eigengenes (MEs) represent a sophisticated metric for summarizing the gene expression profiles within co-expression modules. Technically, these eigengenes are derived through principal component analysis (PCA) of the gene expression matrix for each module, where the first principal component constitutes the module eigengene.

Dimensionality reduction techniques are a very hot topic in single-cell genomics. It is well known that technical artifacts can muddy the analysis of single-cell datasets, and over the years there have been many methods that aim to reduce the effects of these artifacts. Therefore it stands to reason that MEs would be subject to these technical artifacts as well, and hdWGCNA seeks to alleviate these effects.

hdWGCNA includes a function ModuleEigengenes to compute module eigengenes in single cells. Additionally, we allow the user to apply Harmony batch correction to the MEs, yielding harmonized module eigengenes (hMEs). The following code performs the module eigengene computation harmonizing by the Sample of origin using the group.by.vars parameter.

# need to run ScaleData first or else harmony throws an error:
seurat_obj <- ScaleData(seurat_obj, features=VariableFeatures(seurat_obj))

# compute all MEs in the full single-cell dataset
seurat_obj <- ModuleEigengenes(
 seurat_obj,
 group.by.vars="Sample"
)

The ME matrices are stored as a matrix where each row is a cell and each column is a module. This matrix can be extracted from the Seurat object using the GetMEs function, which retrieves the hMEs by default.

# harmonized module eigengenes:
hMEs <- GetMEs(seurat_obj)

# module eigengenes:
MEs <- GetMEs(seurat_obj, harmonized=FALSE)

7.2 Compute module connectivity

In co-expression network analysis, we often want to focus on the “hub genes”, those which are highly connected within each module. Therefore we wish to determine the eigengene-based connectivity, also known as kME, of each gene. hdWGCNA includes the ModuleConnectivity to compute the kME values in the full single-cell dataset, rather than the metacell dataset. This function essentially computes pairwise correlations between genes and module eigengenes. kME can be computed for all cells in the dataset, but we recommend computing kME in the cell type or group that was previously used to run ConstructNetwork.

# compute eigengene-based connectivity (kME):
seurat_obj <- ModuleConnectivity(
  seurat_obj,
  group.by = 'cell_type', group_name = 'INH'
)

For convenience, we re-name the hdWGCNA modules to indicate that they are from the inhibitory neuron group. More information about renaming modules can be found in the module customization tutorial.

# rename the modules
seurat_obj <- ResetModuleNames(
  seurat_obj,
  new_name = "INH-M"
)

We can visualize the genes in each module ranked by kME using the PlotKMEs function.

# plot genes ranked by kME for each module
PlotDendrogram(seurat_obj, main='INH hdWGCNA Dendrogram')
kME_distributions

Figure 5. kME distributions for each module

7.3 Getting the module assignment table

hdWGCNA allows for easy access of the module assignment table using the GetModules function. This table consists of three columns: gene_name stores the gene’s symbol or ID, module stores the gene’s module assignment, and color stores a color mapping for each module, which is used in many downstream plotting steps. If ModuleConnectivity has been called on this hdWGCNA experiment, this table will have additional columns for the kME of each module.

# get the module assignment table:
modules <- GetModules(seurat_obj) %>% subset(module != 'grey')

# show the first 6 columns:
head(modules[,1:6])
Output
          gene_name module     color   kME_grey  kME_INH-M1 kME_INH-M2
LINC01409 LINC01409 INH-M1       red 0.06422496  0.14206189 0.02146438
INTS11       INTS11 INH-M2      blue 0.19569750  0.04996486 0.22687525
CCNL2         CCNL2 INH-M3     green 0.21124081  0.04668528 0.20013727
GNB1           GNB1 INH-M4 lightcyan 0.24093763  0.03203763 0.20114899
TNFRSF14   TNFRSF14 INH-M5    yellow 0.01315166  0.02388175 0.02342308
TPRG1L       TPRG1L INH-M6 turquoise 0.10138479 -0.05137751 0.12394048

A table of the top N hub genes sorted by kME can be extracted using the GetHubGenes function.

# get hub genes
hub_df <- GetHubGenes(seurat_obj, n_hubs = 10)

head(hub_df)
Output
 gene_name module       kME
1 ANKRD30BL INH-M1 0.3711414
2   CACNA1B INH-M1 0.3694937
3     GRIN1 INH-M1 0.3318094
4   BMS1P14 INH-M1 0.3304103
5 LINC00342 INH-M1 0.3252982
6 LINC01278 INH-M1 0.3100343

This wraps up the critical analysis steps for hdWGCNA, so remember to save your output.

saveRDS(seurat_obj, file='hdWGCNA_object.rds')

7.3.1 Compute hub gene signature scores

Gene scoring analysis is a popular method in single-cell transcriptomics for computing a score for the overall signature of a set of genes. We can use these methods as alternatives to module eigengenes. hdWGCNA includes the function ModuleExprScore to compute gene scores for a give number of genes for each module, using either the UCell or Seurat algorithm.

# compute gene scoring for the top 25 hub genes by kME for each module
# with UCell method
library(UCell)
seurat_obj <- ModuleExprScore(
  seurat_obj,
  n_genes = 25,
  method='UCell'
)

8 📊 Data Visualization

This section demonstrates the visualization capabilities integrated within hdWGCNA and illustrates the application of Seurat’s native plotting functions for result interpretation. For comprehensive network visualization techniques, please refer to our dedicated hdWGCNA network visualization tutorial.

8.1 Module Feature Visualization

The FeaturePlot functionality, a cornerstone of Seurat’s visualization toolkit, enables the projection of features onto dimensionality reduction plots. hdWGCNA extends this capability through the ModuleFeaturePlot function, which generates feature plots for each co-expression module using module-specific color assignments.

# make a featureplot of hMEs for each module
plot_list <- ModuleFeaturePlot(
  seurat_obj,
  features='hMEs', # plot the hMEs
  order=TRUE # order so the points with highest hMEs are on top
)

# stitch together with patchwork
wrap_plots(plot_list, ncol=6)

Figure 6. Feature plots of hMEs for each module

We can also plot the hub gene signature score using the same function:

# make a featureplot of hub scores for each module
plot_list <- ModuleFeaturePlot(
  seurat_obj,
  features='scores', # plot the hub gene scores
  order='shuffle', # order so cells are shuffled
  ucell = TRUE # depending on Seurat vs UCell for gene scoring
)

# stitch together with patchwork
wrap_plots(plot_list, ncol=6)

Figure 7. Feature plots of hub gene scores for each module

We can also use a radar plot to visualize the relative expression level of each module across different cell groupings. Here we use the function ModuleRadarPlot to visualize the expression of these modules in the INH subclusters.

seurat_obj$cluster <- do.call(rbind, strsplit(as.character(seurat_obj$annotation), ' '))[,1]

ModuleRadarPlot(
  seurat_obj,
  group.by = 'cluster',
  barcodes = seurat_obj@meta.data %>% subset(cell_type == 'INH') %>% rownames(),
  axis.label.size=4,
  grid.label.size=4
)

Figure 8. Radar plot of hMEs for each module in INH subclusters

Here we can easily visualize which modules are shared across different INH subtypes, like module INH-M1, as well as modules that are expressed more specifically in one subtype like module INH-M18. For this type of plot we do not recommend trying to visualize too many cell groups at once.

Expand to see Module Correlogram

hdWGCNA includes the ModuleCorrelogram function to visualize the correlation between each module based on their hMEs, MEs, or hub gene scores using the R package corrplot.

# plot module correlagram
ModuleCorrelogram(seurat_obj)

Figure 9. Correlogram of hMEs for each module

8.2 Plotting beyond the hdWGCNA package

Sometimes we want to make a custom visualization that may not be included in hdWGCNA. Fortunately, R has an incredible amount of different data visualization packages to take advantage of. The base Seurat plotting functions are also great for visualizing hdWGCNA outputs. Here is a simple example where we visualize the MEs using the Seurat DotPlot function. The key to using Seurat’s plotting functions to visualize the hdWGCNA data is to add it into the Seurat object’s @meta.data slot.

# get hMEs from seurat object
MEs <- GetMEs(seurat_obj, harmonized=TRUE)
modules <- GetModules(seurat_obj)
mods <- levels(modules$module); mods <- mods[mods != 'grey']

# add hMEs to Seurat meta-data:
seurat_obj@meta.data <- cbind(seurat_obj@meta.data, MEs)

Now we can easily use Seurat’s DotPlot function:

# plot with Seurat's DotPlot function
p7 <- DotPlot(seurat_obj, features=mods, group.by = 'cell_type')

# flip the x/y axes, rotate the axis labels, and change color scheme:
p7 <- p7 +
  RotatedAxis() +
  scale_color_gradient2(high='red', mid='grey95', low='blue')

p7

Figure 10. Dot plot of hMEs for each module in each cell type

9 🚀 Advanced Analysis and Further Applications

Having established the foundation of co-expression network construction and module identification, numerous advanced analytical possibilities become available within the hdWGCNA framework. We recommend exploring the following resources to enhance your analysis:

9.1 Network Visualization and Enrichment Analysis

9.2 Comparative Analysis Across Biological Conditions

For investigators interested in comparative analyses between different biological conditions, we offer specialized tutorials:

9.3 Advanced Regulatory Network Analysis

For researchers pursuing deeper mechanistic insights, we provide specialized tutorials on regulatory network analysis:

9.4 Alternative Analytical Approaches

For those interested in alternative methodological approaches:

10 SessionInfo

sessionInfo()
#> R version 4.5.0 (2025-04-11 ucrt)
#> Platform: x86_64-w64-mingw32/x64
#> Running under: Windows 11 x64 (build 26100)
#> 
#> Matrix products: default
#>   LAPACK version 3.12.1
#> 
#> locale:
#> [1] LC_COLLATE=English_United States.utf8  LC_CTYPE=English_United States.utf8    LC_MONETARY=English_United States.utf8
#> [4] LC_NUMERIC=C                           LC_TIME=English_United States.utf8    
#> 
#> time zone: America/New_York
#> tzcode source: internal
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] htmltools_0.5.8.1 kableExtra_1.4.0  knitr_1.50       
#> 
#> loaded via a namespace (and not attached):
#>  [1] svglite_2.2.1      cli_3.6.5          rlang_1.1.6        xfun_0.53          stringi_1.8.7      showtextdb_3.0    
#>  [7] sysfonts_0.8.9     assertthat_0.2.1   textshaping_1.0.3  jsonlite_2.0.0     glue_1.8.0         sass_0.4.10       
#> [13] scales_1.4.0       rmarkdown_2.30     klippy_0.0.0.9500  evaluate_1.0.5     jquerylib_0.1.4    fastmap_1.2.0     
#> [19] yaml_2.3.10        lifecycle_1.0.4    stringr_1.5.2      compiler_4.5.0     RColorBrewer_1.1-3 rstudioapi_0.17.1 
#> [25] systemfonts_1.3.1  farver_2.1.2       digest_0.6.37      viridisLite_0.4.2  R6_2.6.1           dichromat_2.0-0.1 
#> [31] showtext_0.9-7     magrittr_2.0.4     bslib_0.9.0        tools_4.5.0        xml2_1.4.0         cachem_1.1.0

📚 References

Hao, Y., T. Stuart, M. H. Kowalski, S. Choudhary, P. Hoffman, A. Hartman, A. Srivastava, et al. 2024. “Dictionary Learning for Integrative, Multimodal and Scalable Single-Cell Analysis.” Journal Article. Nat Biotechnol 42 (2): 293–304. https://doi.org/10.1038/s41587-023-01767-y.
Morabito, S., F. Reese, N. Rahimzadeh, E. Miyoshi, and V. Swarup. 2023. “hdWGCNA Identifies Co-Expression Networks in High-Dimensional Transcriptomics Data.” Journal Article. Cell Rep Methods 3 (6): 100498. https://doi.org/10.1016/j.crmeth.2023.100498.
Wolf, F. A., P. Angerer, and F. J. Theis. 2018. “SCANPY: Large-Scale Single-Cell Gene Expression Data Analysis.” Journal Article. Genome Biol 19 (1): 15. https://doi.org/10.1186/s13059-017-1382-0.
Zhou, Y., W. M. Song, P. S. Andhey, A. Swain, T. Levy, K. R. Miller, P. L. Poliani, et al. 2020. “Human and Mouse Single-Nucleus Transcriptomics Reveal TREM2-Dependent and TREM2-Independent Cellular Responses in Alzheimer’s Disease.” Journal Article. Nat Med 26 (1): 131–42. https://doi.org/10.1038/s41591-019-0695-9.